ilert · Example Payload

Get Schedules {Id}

Incident ManagementOn-Call AlertingAlert RoutingEscalation PoliciesOn-Call SchedulesStatus PagesHeartbeat MonitoringEvent ManagementDevOpsSREIT Operations

Get Schedules {Id} is an example object payload from ilert, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarydescriptionmethodpathparametersrequest_bodyresponse

Example Payload

Raw ↑
{
  "summary": "Get the on-call schedule with the specified id.",
  "description": "",
  "method": "GET",
  "path": "/schedules/{id}",
  "parameters": {
    "id": 1.0,
    "include": [
      "scheduleLayers"
    ]
  },
  "request_body": null,
  "response": {
    "id": 1,
    "name": "string",
    "timezone": "Europe/Berlin",
    "type": "STATIC",
    "scheduleLayers": [
      {
        "name": null,
        "startsOn": null,
        "endsOn": null,
        "users": null,
        "rotation": null,
        "restrictionType": null
      }
    ],
    "shifts": [
      {
        "user": null,
        "end": null,
        "start": null
      }
    ]
  }
}